home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
programming
/
other
/
jikes
/
src
/
lpginput.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-05-14
|
803b
|
26 lines
// $Id: lpginput.h,v 1.3 1999/01/25 20:00:31 shields Exp $
//
// This software is subject to the terms of the IBM Jikes Compiler
// License Agreement available at the following URL:
// http://www.ibm.com/research/jikes.
// Copyright (C) 1996, 1998, International Business Machines Corporation
// and others. All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
#ifndef lpginput_INCLUDED
#define lpginput_INCLUDED
#include "config.h"
#include "stream.h"
typedef LexStream::TokenIndex TokenObject;
typedef LexStream::TokenIndex Location;
inline Location Loc(TokenObject i) { return i; }
#include "javasym.h" /* mapping of lexical symbols */
#include "javadef.h" /* definition of parsing names */
#include "javaprs.h" /* parsing action functions */
#endif